home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / strategy / connx-1.001 / connx-1~ / Makefile < prev    next >
Makefile  |  1995-02-11  |  585b  |  26 lines

  1. #connx Makefile
  2.  
  3. # -DTCPIP indicates to use TCPIP sockets rather than UNIX local sockets
  4. CFLAGS=-DTCPIP
  5.  
  6. #uncomment this line if you're using AIX
  7. # CFLAGS=-DTCPIP -DAIX
  8.  
  9. USRLIBDIR=/usr/lib/X11R6
  10. LIBFLAGS=-lX11
  11.  
  12. all: connx connserv
  13.  
  14. connx: client.o commun.o xconnect.o
  15.     cc -o connx client.o commun.o xconnect.o -L $(USRLIBDIR) $(LIBFLAGS)
  16.  
  17. connserv: server.o connect.o commun.o
  18.     cc -o connserv server.o connect.o commun.o
  19.  
  20. client.o: commun.h connect.h xconnect.h
  21. commun.o: commun.h 
  22. connect.o: connect.h commun.h
  23. server.o: connect.h commun.h 
  24. xconnect.o: xconnect.h connect.h commun.h
  25.  
  26.